home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 49
/
Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso
/
-serious-
/
graphics
/
amicad
/
arexx
/
tourner.amicad
< prev
next >
Wrap
Text File
|
1999-12-06
|
1KB
|
65 lines
/* Rotation d'un composant en conservant un emplacement
correct de sa référence et de sa valeur.
$VER: Tourner.AmiCAD, © R.Florac, 11 août 1998 */
options results
signal on error
signal on syntax
nr=0; objet=1
'SAVEALL(-1):OBJECTS(-1)'; objets=result
do while objet>0
'O=FINDOBJ('objet',1,-1,-1)'; objet=result
if objet>0 then do
'TEST(O)'
if result>0 then do
nr=nr+1
call tourner(objet)
end
objet=objet+1
if objet>objets then objet=0
end
end
if nr=0 then do
'PICKOBJ("Cliquez sur l''objet à faire tourner")'
objet=result
call tourner(objet)
end
exit
tourner: procedure
parse arg o
'GETPOS(O='o')'; p=result
'ROTATE(O,1):V=GETVAL(O)'
if result>0 then do
if p=1 | p=3 then do
'MOVE(V,COL(O)-COL(V)+10,LINE(O)+HEIGHT(O)-LINE(V)+9)'
end
else do
'MOVE(V,COL(O)+WIDTH(O)-COL(V)+9,LINE(O)+HEIGHT(O)-(HEIGHT(O)-20)/2-1-LINE(V))'
end
end
'R=GETREF(O)'
if result>0 then do
if p=1 | p=3 then do
'MOVE(R,COL(O)-COL(R)+10,LINE(O)-LINE(R))'
end
else do
'MOVE(R,COL(O)+WIDTH(O)-COL(R)+9,LINE(O)+HEIGHT(O)-(HEIGHT(O)-20)/2-11-LINE(R))'
end
end
return
/* Traitement des erreurs, interruption du programme */
syntax:
erreur=RC
'MESSAGE("Erreur de syntaxe"+CHR(10)+"en ligne 'SIGL'"+CHR(10)+"'errortext(erreur)'")'
exit
error:
'MESSAGE("Erreur en ligne 'SIGL'")'
exit